/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
  }
}

/* Page Content */
.page-content {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.about-section {
  background-color: white;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
  color: #0066cc;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-section p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 12px 0;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  border-bottom: 1px solid #eee;
}

.values-list li:last-child {
  border-bottom: none;
}

/* Blogs Page */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  color: #0066cc;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-title {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.read-more:hover {
  color: #0052a3;
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* FAQ Page */
.faq-container {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  background-color: white;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  background-color: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #1a1a1a;
  transition: all 0.3s;
}

.faq-question:hover {
  background-color: #e8e8e8;
}

.faq-toggle {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 20px;
  color: #666;
  line-height: 1.8;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Career Page */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.job-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.job-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.job-title {
  color: #0066cc;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.job-location {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.job-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.apply-btn {
  padding: 10px 20px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
  width: 100%;
}

.apply-btn:hover {
  background-color: #0052a3;
}

/* Contact Page */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background-color: #0052a3;
}

.contact-info {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  color: #0066cc;
  font-size: 18px;
  margin-bottom: 10px;
}

.info-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.info-item a {
  color: #0066cc;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* Service Pages */
.service-hero {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.service-hero .hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-hero .hero-content p {
  font-size: 18px;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .service-hero .hero-content h1 {
    font-size: 32px;
  }

  .service-hero .hero-content p {
    font-size: 14px;
  }
}

.service-main {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-intro {
  background-color: white;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.intro-text h2 {
  color: #1a1a1a;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.intro-text p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.intro-image {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-features {
  background-color: white;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-box {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.feature-box h3,
.feature-box h4 {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.feature-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.benefits-box {
  background-color: #f0f7ff;
  border-left-color: #0066cc;
}

.services-include {
  background-color: #f0f7ff;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.services-include h3 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}

.services-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}

.services-list li {
  display: flex;
  gap: 12px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.checkmark {
  color: #0066cc;
  font-weight: bold;
  flex-shrink: 0;
}

.why-choose {
  background-color: #f5f5f5;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
}

.why-choose h3 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  display: flex;
  gap: 12px;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.bullet {
  color: #0066cc;
  font-weight: bold;
  flex-shrink: 0;
}

.approach-section {
  background-color: white;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.approach-section h3 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.approach-section p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.related-services {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.related-services h3 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.service-link {
  padding: 10px 20px;
  background-color: #f0f7ff;
  color: #0066cc;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s;
  border: 1px solid #0066cc;
}

.service-link:hover {
  background-color: #0066cc;
  color: white;
}